home *** CD-ROM | disk | FTP | other *** search
- unit QTestU;
-
- interface
-
- uses
- SysUtils, Types, Classes, QGraphics, QControls, QForms, QDialogs,
- QStdCtrls, IntfPropTest;
-
- type
- TForm1 = class(TForm)
- IntfPropTest1: TIntfPropTest;
- IntfImplementor1: TIntfImplementor;
- Button1: TButton;
- procedure Button1Click(Sender: TObject);
- procedure FormCreate(Sender: TObject);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- Form1: TForm1;
-
- implementation
-
- {$R *.xfm}
-
- procedure TForm1.Button1Click(Sender: TObject);
- begin
- IntfPropTest1.IntfProp.DoSomething
- end;
-
- procedure TForm1.FormCreate(Sender: TObject);
- begin
- Caption := 'Form1';
- Button1.Caption := 'Button1'
- end;
-
- end.
-